.cardz {
  width: 280px;
  height: 280px;
  background: rgba(15, 15, 15, 0.036);
  border-radius: 32px;
  padding: 3px;
  position: relative;
  box-shadow: #604b4a30 0px 70px 30px -50px;
  transition: all 0.5s ease-in-out;
  
}

.cardz .mail {
  position: absolute;
  right: 2rem;
  top: 1.4rem;
  background: transparent;
  border: none;
}

.cardz .mail svg {
  stroke: #f78a05;
  stroke-width: 3px;
}

.cardz .mail svg:hover {
  stroke: #0516fe;
}

.cardz .profile-pic {
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 3px;
  left: 3px;
  border-radius: 29px;
  z-index: 1;
  border: 0px solid #3e3b3a;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;
}

.cardz .profile-pic img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: 0px 0px;
  object-position: 0px 0px;
  transition: all 0.5s ease-in-out 0s;
}

.cardz .profile-pic svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0px 0px;
  object-position: 0px 0px;
  transform-origin: 45% 20%;
  transition: all 0.5s ease-in-out 0s;
}

.cardz .bottomz {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: #04015d77;
  top: 80%;
  border-radius: 29px;
  
  box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px inset;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.cardz .bottomz .content {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 160px;
}

.cardz .bottomz .content .name {
  display: block;
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
}

.cardz .bottomz .content .about-me {
  display: block;
  font-size: 0.9rem;
  color: white;
  margin-top: 1rem;
}

.cardz .bottomz .bottom-bottom {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cardz .bottomz .bottom-bottom .social-links-container {
  display: flex;
  gap: 1rem;
}

.cardz .bottomz .bottom-bottom .social-links-container svg {
  height: 20px;
  fill: white;
  filter: drop-shadow(0 5px 5px rgba(165, 132, 130, 0.1333333333));
}

.cardz .bottomz .bottom-bottom .social-links-container svg:hover {
  fill: #f18509;
  transform: scale(1.2);
}

.cardz .bottomz .bottom-bottom .button {
  background: white;
  color: #dc6809;
  border: none;
  border-radius: 20px;
  font-size: 0.6rem;
  padding: 0.4rem 0.6rem;
  box-shadow: rgba(165, 132, 130, 0.1333333333) 0px 5px 5px 0px;
}

.cardz .bottomz .bottom-bottom .button:hover {
  background: #dc6809;
  color: white;
}

.cardz:hover {
  border-top-left-radius: 55px;
}

.cardz:hover .bottomz {
  top: 20%;
  border-radius: 80px 29px 29px 29px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
}

.cardz:hover .profile-pic {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  z-index: 3;
  border: 7px solid #1704e06e;
  box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px;
  transition: all 0.5s ease-in-out, z-index 0.5s ease-in-out 0.1s;
}

.cardz:hover .profile-pic:hover {
  transform: scale(1.3);
  border-radius: 0px;
}

.cardz:hover .profile-pic img {
  transform: scale(2.5);
  -o-object-position: 0px 25px;
  object-position: 0px 25px;
  transition: all 0.5s ease-in-out 0.5s;
}

.cardz:hover .profile-pic svg {
  transform: scale(2.5);
  transition: all 0.5s ease-in-out 0.5s;
}





.card-avatar {
    transform: none;
    left: 20px;
    width: 50px;
    height: 50px;
    bottom: 10px;
  }


  






/* popup  00000000000000000000000000000000000000000000 */


.popup {
    position:fixed;
    top:-150%;
    left:50%;
    transform:translate(-50%,-50%) scale(1.2);
    opacity:0;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:inset 0px 0px 20px 5px rgba(255,255,255,0.05);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    width:350px;
    padding:20px 30px;
    border-radius:10px;
    z-index:1000;
    transition:top 0ms ease-in-out 300ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }

  .popup.active {
    top:50%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    transition:top 0ms ease-in-out 0ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup .close-btn {
    position:absolute;
    top:10px;
    right:10px;
    width:25px;
    height:25px;
    font-size:18px;
    text-align:center;
    line-height:25px;
    color:#fdfdfd;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    cursor:pointer;
  }

 

/* popup  1111111111111111111111111111111111111111111 */

.popup1 {
    position:fixed;
    top:-150%;
    left:50%;
    transform:translate(-50%,-50%) scale(1.2);
    opacity:0;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:inset 0px 0px 20px 5px rgba(255,255,255,0.05);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    width:350px;
    padding:20px 30px;
    border-radius:10px;
    z-index:1000;
    transition:top 0ms ease-in-out 300ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup1.active {
    top:50%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    transition:top 0ms ease-in-out 0ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup1 .close-btn {
    position:absolute;
    top:10px;
    right:10px;
    width:25px;
    height:25px;
    font-size:18px;
    text-align:center;
    line-height:25px;
    color:#fdfdfd;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    cursor:pointer;
  }


 



/* popup  2222222222222222222222222222222222222222 */
  
.popup2 {
    position:fixed;
    top:-150%;
    left:50%;
    transform:translate(-50%,-50%) scale(1.2);
    opacity:0;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:inset 0px 0px 20px 5px rgba(255,255,255,0.05);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    width:350px;
    padding:20px 30px;
    border-radius:10px;
    z-index:1000;
    transition:top 0ms ease-in-out 300ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup2.active {
    top:50%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    transition:top 0ms ease-in-out 0ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup2 .close-btn {
    position:absolute;
    top:10px;
    right:10px;
    width:25px;
    height:25px;
    font-size:18px;
    text-align:center;
    line-height:25px;
    color:#fdfdfd;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    cursor:pointer;
  }


 


  

/* popup  3333333333333333333333333333333333333333333333333333333 */
  .popup3 {
    position:fixed;
    top:-150%;
    left:50%;
    transform:translate(-50%,-50%) scale(1.2);
    opacity:0;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:inset 0px 0px 20px 5px rgba(255,255,255,0.05);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    width:350px;
    padding:20px 30px;
    border-radius:10px;
    z-index:1000;
    transition:top 0ms ease-in-out 300ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup3.active {
    top:50%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    transition:top 0ms ease-in-out 0ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup3 .close-btn {
    position:absolute;
    top:10px;
    right:10px;
    width:25px;
    height:25px;
    font-size:18px;
    text-align:center;
    line-height:25px;
    color:#fdfdfd;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    cursor:pointer;
  }


 

  /* popup  444444444444444444444444444444444444444444444444444 */

.popup4 {
    position:fixed;
    top:-150%;
    left:50%;
    transform:translate(-50%,-50%) scale(1.2);
    opacity:0;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:inset 0px 0px 20px 5px rgba(255,255,255,0.05);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    width:350px;
    padding:20px 30px;
    border-radius:10px;
    z-index:1000;
    transition:top 0ms ease-in-out 300ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup4.active {
    top:50%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    transition:top 0ms ease-in-out 0ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup4 .close-btn {
    position:absolute;
    top:10px;
    right:10px;
    width:25px;
    height:25px;
    font-size:18px;
    text-align:center;
    line-height:25px;
    color:#fdfdfd;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    cursor:pointer;
  }


  

 
  /* popup  5555555555555555555555555555555555555555 */

.popup5 {
    position:fixed;
    top:-150%;
    left:50%;
    transform:translate(-50%,-50%) scale(1.2);
    opacity:0;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:inset 0px 0px 20px 5px rgba(255,255,255,0.05);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    width:350px;
    padding:20px 30px;
    border-radius:10px;
    z-index:1000;
    transition:top 0ms ease-in-out 300ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup5.active {
    top:50%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    transition:top 0ms ease-in-out 0ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup5 .close-btn {
    position:absolute;
    top:10px;
    right:10px;
    width:25px;
    height:25px;
    font-size:18px;
    text-align:center;
    line-height:25px;
    color:#fdfdfd;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    cursor:pointer;
  }


 
 
    /* popup  6666666666666666666666666666666666666666666666 */

.popup6 {
    position:fixed;
    top:-150%;
    left:50%;
    transform:translate(-50%,-50%) scale(1.2);
    opacity:0;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:inset 0px 0px 20px 5px rgba(255,255,255,0.05);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    width:350px;
    padding:20px 30px;
    border-radius:10px;
    z-index:1000;
    transition:top 0ms ease-in-out 300ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup6.active {
    top:50%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    transition:top 0ms ease-in-out 0ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup6 .close-btn {
    position:absolute;
    top:10px;
    right:10px;
    width:25px;
    height:25px;
    font-size:18px;
    text-align:center;
    line-height:25px;
    color:#fdfdfd;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    cursor:pointer;
  }


   /* popup  7777777777777777777777777777777777777777777777777 */

.popup7 {
    position:fixed;
    top:-150%;
    left:50%;
    transform:translate(-50%,-50%) scale(1.2);
    opacity:0;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:inset 0px 0px 20px 5px rgba(255,255,255,0.05);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    width:350px;
    padding:20px 30px;
    border-radius:10px;
    z-index:1000;
    transition:top 0ms ease-in-out 300ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup7.active {
    top:50%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    transition:top 0ms ease-in-out 0ms,
               opacity 300ms ease-in-out 0ms,
               transform 300ms ease-in-out 0ms;
  }
  .popup7 .close-btn {
    position:absolute;
    top:10px;
    right:10px;
    width:25px;
    height:25px;
    font-size:18px;
    text-align:center;
    line-height:25px;
    color:#fdfdfd;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    cursor:pointer;
  }

